ITableRow<T> Interface
A row of a table, grid or APO Grid control in SAP GUI for Windows applications.

C# Syntax

public interface ITableRow<T> 
where T: ITableCellBase
Type Parameters
T
Public Properties
 NameDescription
PropertyCells

The cells in this row

C# Syntax

ReadOnlyCollection<T> Cells {get;}
Property

RowIndex

UFT Developer 23.4 or later

The 0-based index of this row.

C# Syntax

int RowIndex {get;}

Top
Public Methods
 NameDescription
MethodGetCellReturns a cell from the row by column name.  
Top